home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / Emulation_Include_Files / cefltmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.8 KB  |  43 lines

  1. /****************************************************************************
  2. *                                                                           *
  3. * Cefilt.h -- Windows CE Services filter procedure declarations,            *
  4. *             structures, constant definitions and macros mapping.          *
  5. *                                                                           *
  6. * Copyright (c) 1995-1997, Microsoft Corp. All rights reserved.             *
  7. *                                                                           *
  8. ****************************************************************************/
  9.  
  10. #ifndef _CEFLTMAP_
  11. #define _CEFLTMAP_
  12.  
  13. // {6C5C05E0-97A2-11cf-8011-00A0C90A8F78}
  14. DEFINE_GUID(IID_IPegasusFileFilterSite, 
  15. 0x6c5c05e0, 0x97a2, 0x11cf, 0x80, 0x11, 0x0, 0xa0, 0xc9, 0xa, 0x8f, 0x78);
  16. // {6C5C05E1-97A2-11cf-8011-00A0C90A8F78}
  17. DEFINE_GUID(IID_IPegasusFileFilter, 
  18. 0x6c5c05e1, 0x97a2, 0x11cf, 0x80, 0x11, 0x0, 0xa0, 0xc9, 0xa, 0x8f, 0x78);
  19. // {6C5C05E2-97A2-11cf-8011-00A0C90A8F78}
  20. DEFINE_GUID(IID_IPegasusFileFilterOptions, 
  21. 0x6c5c05e2, 0x97a2, 0x11cf, 0x80, 0x11, 0x0, 0xa0, 0xc9, 0xa, 0x8f, 0x78);
  22.  
  23.  
  24. #define HRESULT_TO_PFERROR    HRESULT_TO_CFERROR
  25.  
  26. typedef CF_ERROR              PF_ERROR;
  27. typedef CFF_DESTINATIONFILE   PFF_DESTINATIONFILE; 
  28. typedef CFF_CONVERTINFO       PFF_CONVERTINFO; 
  29. typedef CFF_SOURCEFILE        PFF_SOURCEFILE;
  30.  
  31. #define PF_OPENFLAT           CF_OPENFLAT     
  32. #define PF_OPENCOMPOUND       CF_OPENCOMPOUND 
  33. #define PF_OPENDONT           CF_OPENDONT     
  34. #define PF_OPENASKMEHOW       CF_OPENASKMEHOW 
  35.  
  36. typedef CFF_CONVERTOPTIONS    PFF_CONVERTOPTIONS;
  37.  
  38. #define IPegasusFileFilterSite      ICeFileFilterSite
  39. #define IPegasusFileFilter          ICeFileFilter
  40. #define IPegasusFileFilterOptions   ICeFileFilterOptions
  41.  
  42. #endif /* !_CEFLTMAP_ */
  43.